home *** CD-ROM | disk | FTP | other *** search
/ Turnbull China Bikeride / Turnbull China Bikeride - Disc 2.iso / STUTTGART / LANG / SML40 / !Sml / Sml / compstuff / hc / debug next >
Text File  |  1990-10-05  |  620b  |  32 lines

  1. /*$Header: /tmp_mnt/home/rjg/rjg/Ml/fam.src/UPTODATE/RCS/debug.h,v 4.0 89/09/20 13:32:40 rjg Exp $*/
  2. /*$Log:    debug.h,v $
  3.  * Revision 4.0  89/09/20  13:32:40  rjg
  4.  * incorporated RCS
  5.  * */
  6.  
  7.  
  8. #ifdef DEBUGinterp
  9.  
  10. #ifndef NumByteCodes
  11. #include "bcodes.h"
  12. #endif
  13.  
  14. #ifndef INTZERO
  15. #include    "globdefs.h"
  16. #include "structs.h"
  17. #endif
  18.  
  19. #  define TraceBackSize 100
  20.  
  21.     char    OpNameFile[1024]     = "OpCodeCount"  ;
  22.     int    TraceInst     = 0  ;
  23.     Byte    nextbyte;
  24.     int    OpcodeCount[NumByteCodes];
  25.     int    DynamicOpcodeCount[NumByteCodes];
  26.     Byte    TraceBackList[TraceBackSize];
  27.     int    LastInst     = TraceBackSize ,
  28.         FirstInst     = TraceBackSize ;
  29.  
  30. #endif
  31.  
  32.